39903842575d3eadbec8c8153f79caa76c3f2c6e,test/src/test/java/hudson/tools/JDKInstallerTest.java,JDKInstallerTest,fakeUnixInstall,#,179

Before Change


    @Test
    public void fakeUnixInstall() throws Exception {
        // If we're on Windows, don't bother doing this.
        if (Functions.isWindows())
            return;

        File bundle = File.createTempFile("fake-jdk-by-hudson","sh");
        try {
            new FilePath(bundle).write(

After Change


     */
    @Test
    public void fakeUnixInstall() throws Exception {
        Assume.assumeFalse("If we're on Windows, don't bother doing this", Functions.isWindows());

        File bundle = File.createTempFile("fake-jdk-by-hudson","sh");
        try {